From: Richard M. Stallman Date: Wed, 26 Jun 2002 08:44:11 +0000 (+0000) Subject: (Frecenter): Don't set force_start flag. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~32033 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=c1d2bd9913a3e9cbaa03542e09d8e1e274c5c613;p=emacs.git (Frecenter): Don't set force_start flag. --- diff --git a/src/window.c b/src/window.c index a63b91f7663..ee9cc610bb0 100644 --- a/src/window.c +++ b/src/window.c @@ -4781,7 +4781,11 @@ and redisplay normally--don't erase and redraw the frame. */) /* Set the new window start. */ set_marker_both (w->start, w->buffer, charpos, bytepos); w->window_end_valid = Qnil; +#if 0 /* This is wrong because the whole idea is that point is + on the screen. If it moves away before redisplay, + we should not override that. */ w->force_start = Qt; +#endif if (bytepos == BEGV_BYTE || FETCH_BYTE (bytepos - 1) == '\n') w->start_at_line_beg = Qt; else